home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / powerd / modules.lha / modules / hardware / intbits.m < prev   
Encoding:
Text File  |  2000-11-18  |  848 b   |  33 lines

  1. #define INTB_SETCLR     (15) 
  2. #define INTB_INTEN     (14) 
  3. #define INTB_EXTER     (13) 
  4. #define INTB_DSKSYNC     (12) 
  5. #define INTB_RBF     (11) 
  6. #define INTB_AUD3     (10) 
  7. #define INTB_AUD2     (9)  
  8. #define INTB_AUD1     (8)  
  9. #define INTB_AUD0     (7)  
  10. #define INTB_BLIT     (6)  
  11. #define INTB_VERTB     (5)  
  12. #define INTB_COPER     (4)  
  13. #define INTB_PORTS     (3)  
  14. #define INTB_SOFTINT     (2)  
  15. #define INTB_DSKBLK     (1)  
  16. #define INTB_TBE     (0)  
  17. #define INTF_SETCLR     (1<<15)
  18. #define INTF_INTEN     (1<<14)
  19. #define INTF_EXTER     (1<<13)
  20. #define INTF_DSKSYNC     (1<<12)
  21. #define INTF_RBF     (1<<11)
  22. #define INTF_AUD3     (1<<10)
  23. #define INTF_AUD2     (1<<9)
  24. #define INTF_AUD1     (1<<8)
  25. #define INTF_AUD0     (1<<7)
  26. #define INTF_BLIT     (1<<6)
  27. #define INTF_VERTB     (1<<5)
  28. #define INTF_COPER     (1<<4)
  29. #define INTF_PORTS     (1<<3)
  30. #define INTF_SOFTINT     (1<<2)
  31. #define INTF_DSKBLK     (1<<1)
  32. #define INTF_TBE     (1<<0)
  33.